home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 February
/
Chip_2003-02_cd1.bin
/
zkuste
/
xptools
/
install
/
Xsetup
/
setup.exe
/
{app}
/
plugins
/
XQ WinNT RAS Options 4.xpl
< prev
next >
Wrap
Text File
|
2002-07-26
|
1KB
|
45 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH 1"="Network\RAS & DUN"
"UIPATH 2"="Startup/Shutdown\Startup\Windows NT/2K/XP\31) Inside Login Window"
"NAME"="Login Window: RAS Checkbox"
"VERSION"="1.01"
"LANGUAGE"="VBScript"
"OSVERSION"="010101"
"TEXT 1"="Always activate "Connect using RAS""
"DESCRIPTION 1"="Activate this setting to have the RAS checkbox automatically selected in your login window."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Thanks to CptSiskoX for his help!"
v4="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\RasForce"
Sub Plugin_Initialize
i=RegReadValue(v4)
if i=1 then SetUIElement 1,true
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(v4,"1",1)
else
Call RegWriteValue(v4,"0",1)
end if
Call Logoff
End Sub
Sub Plugin_Terminate
End Sub